home *** CD-ROM | disk | FTP | other *** search
/ MacWorld 1999 February / Macworld (1999-02).dmg / Serious Demos / XTension demo / XTension manual 2.0 / XTension manual 2.0.rsrc / TEXT_169.txt < prev    next >
Text File  |  1998-07-18  |  6KB  |  112 lines

  1.  
  2. Putting it all together                                
  3.  
  4. You‚Äôve created a database of units, and a graphic view of your site.
  5. You have lamps and appliances, and of course motion sensors.
  6.  
  7. Sensors usually need to have scripts attached to them to make them useful.
  8.  
  9. Movement sensors normally turn on lights and/or alarms.
  10.  
  11. Dusk sensors should turn have scripts attached which determine whether it is reasonable for the "Light Source" to be turning on and off at that time and system mode...
  12.  
  13. Outside, you might have PIR motion sensors which always turn on the lights in that area.  These lights have their own X-10 modules, and respond directly to the ON/OFF commands from the PIR.  The command is also seen by XTension, and is noted in the Log.
  14.  
  15. You may also want to have Laser Beam sensors which are not fooled by wind or O'Possums.  These are different in that they can be set so that they only trigger when both of the dual laser beams are interrupted.  This makes a very good indicator of a person or an automobile passing between the transmitter and receiver.
  16.  
  17. Inside, your home or any structure, the cheapest motion sensor, Passive Infra-Red (PIR) is a very good detector of any 'warm body' in that area.
  18.  
  19. Now create schedules for lights and appliances to suit your needs and lifestyle.
  20.  
  21. Create a 'morning wakeup' script which performs all the things that you would want each morning when you wake up.  Turn on the coffee pot, begin brightening the bedside lamp, schedule the drapes to open in 30 minutes etc.
  22.  
  23. Then create a scheduled event which executes 'morning wakeup' every day.  (maybe just weekdays?)
  24.  
  25. In use, XTension can appear as complex or as simple as you wish.  All windows can be sent away and retrieved, and the app can be 'hidden' by the Finder.
  26.  
  27. You can keep as much or as little on screen at any time as you wish.  Window positions are remembered.
  28.  
  29. At first you will want to watch everything at once,  but you will surely want to minimize the number of windows when you want to work with other applications.
  30.  
  31. The simplest view is the limited world view, perhaps with a small list of your most important sensors.
  32.  
  33. Branching out
  34.  
  35. With XTension and AppleScript, you have few limits as to what you can do with your system.  The biggest problem you will have is that of deciding just what you want to do. 
  36.  
  37. Just how do you want the lights to behave when someone walks into the living room?  Do they behave automatically or do you want to issue a remote command to turn them off or on?
  38.  
  39. What about time of day?  Maybe if it's daylight, the lights shouldn't go on.  And if the house is supposed to be empty, then how do you want to signal an alarm?
  40.  
  41. When you really get adventurous, make things happen on other Macintoshes:
  42.      Voice annunciation
  43.      Caller ID announcements.
  44.      Dialogs and warnings.
  45.      Take video clips of intruders in the same area.
  46.  
  47. Perfect Mates for XTension:  
  48. ( see also Technotes regarding these)
  49.  
  50.      The ADB I/O from the Beehive :  8 channels of I/O, both digital I/O and analog input . Connects to your ADB and is AppleScriptable.
  51.  
  52.      Farallon‚Äôs Timbuktu remote control utility.
  53.  
  54.      The Connectix serial camera :
  55.           command another macintosh to take a picture/movie
  56.  
  57.      Big Island‚Äôs telephony agent ‚ÄúYoYo‚Äù:
  58.           scriptable caller ID,  and pager dialing and messaging.
  59.  
  60.      Modem/Fax devices :
  61.           announce arrival of faxes with caller ID...
  62.  
  63.      TV/VCR Home Theater InfraRed control :
  64.           The SmartLinc can be trained to issue IR commands
  65.            whenever it receives specific X-10 commands...
  66.  
  67. Internet !
  68.  
  69. Already there are alarm monitor companies which have web-sites which take email messages from your system and automatically call the police or other phones that you specify.  This service promises to be the cheapest and perhaps most reliable alarm monitor service of the future.
  70.  
  71. Programs such as NetScape and Eudora are scriptable and can be given commands which for example; connect to the net, send a message, and then disconnect.
  72.  
  73. Audio/Video surveillance
  74.  
  75. Cameras with audio are already on the market, at  prices which are below $100 with software.  
  76.  
  77. The Connectix gray-scale camera with microphone connects to a Macintosh serial port and its software is scriptable.  
  78. Connectix also makes a serial color camera for under  $250.
  79.  
  80. Place Connectix cameras on the modem ports of any of the Macs on the network.
  81. The capture application can be kept running in the background, or it can be started on demand by a script.  Obviously, one should consider the delay if time is important.
  82.  
  83. Any script can send AppleEvents to an application,  whether local or on another Mac on the network.
  84.  
  85. Teach your Mac to talk :
  86.  
  87. Several versions of MacinTalk which require various  levels of processor speed and memory.  
  88.  
  89.              PlainTalk
  90.              MacinTalk 2
  91.              MacinTalk 3
  92.              MacinTalk/Pro
  93.  
  94. You may not have documentation, however XTension provides a simple verb to interface with whichever version you have installed :
  95.  
  96.             speak "Glass Breakage in the dining room"
  97.  
  98. If you have multiple Macs on your network, you can also tell another Mac to 'speak'...
  99.  
  100. Talk back to your Mac :
  101.  
  102. Later models of the Macintosh provide excellent speech recognition. 
  103.  
  104. You need only create scripts which have Names which are the same as the Phrase that you want to speak to trigger that script.
  105.  
  106. Put these scripts in the Speakable Items folder, turn on Speech Recognition, and from then on just speak:
  107.  
  108. Script :  Named "Turn on Office"
  109.              Text of script:   Tell application XTension
  110.                                          Turn on "Office Lamp"
  111.                                       End Tell
  112. ...